home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ IE View Source.xpl < prev    next >
Text File  |  2003-11-20  |  2KB  |  55 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="3"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Internet Explorer\Appearance"
  5. "NAME"="View Source Editor"
  6. "VERSION"="1.13"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Name"
  9. "DESCRIPTION 1"="This option will allow the user to change the "View Source" app from a default of Notepad.exe to an application of choice."
  10. "DESCRIPTION 2"="Browse to the location of the desired program."
  11. "DESCRIPTION 3"="To revert to Notepad as the default viewer, browse to the location of Notepad.exe [usually C:\Windows\Notepad.exe or C:\Winnt\Notepad.exe]."
  12. "DESCRIPTION 4"="To apply the default setting, clear field and apply."
  13. "DESCRIPTION 5"="NOTE: Certain programs, when attempting to view the source of an htm/html file that resides in a folder that contains spaces [e.g. Program Files] may fail; in those cases either change the program used as viewer or copy/move the htm/html file to a location that has no spaces in the path name."
  14. "AUTHOR"="Ojatex@aol.com"
  15. "CONTACTURL"="http://members.aol.com/ojatex/"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"="For X-Setup program information go to http://www.xteq.com."
  18. "COMMENT 2"="Thanks to CptSiskoX for plugin suggestion."
  19. "COMMENT 3"="REFRESH broke? --> Fix it here: http://user.aol.com/ojatex/showdoc.htm."
  20.  
  21.  
  22. sPathName="HKLM\Software\Microsoft\Internet Explorer\View Source Editor\Editor Name\@"
  23.  
  24. sPath_Rem1="HKLM\Software\Microsoft\Internet Explorer\View Source Editor\Editor Name\"
  25. sPath_Rem2="HKLM\Software\Microsoft\Internet Explorer\View Source Editor\"
  26.  
  27. SUB Plugin_Initialize
  28.  s=RegReadValue(sPathName) 
  29.  SetUIElement 1,s
  30. END SUB
  31.  
  32. SUB Plugin_CheckData(ElementIndex)
  33. END SUB
  34.  
  35. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  36.  sName=GetUIElement(1)
  37.  
  38.  if len(sName)>0 then   
  39.     Call RegWriteValue(sPathName,sName,1)
  40.  else
  41.     If RegValueExists(sPathName) then 
  42.        Call RegDeleteValue(sPathName)
  43.        Call RegDeletePath(sPath_Rem1)
  44.        Call RegDeletePath(sPath_Rem2)
  45.     end if
  46.     's=RegReadValue(sPathName)
  47.     'if len(s)>0 then Call RegWriteValue(sPathName,"",1)  
  48.  end if
  49.     
  50. END SUB
  51.  
  52. SUB Plugin_Terminate
  53. END SUB
  54.  
  55.